89a10465d56d08c57981d19222e68ce8abf49bf2,core/src/main/java/com/orientechnologies/orient/core/index/OIndexMVRBTreeAbstract.java,OIndexMVRBTreeAbstract,loadFromConfiguration,#ODocument#,169

Before Change


            // AUTOMATIC REBUILD IT
            OLogManager.instance().warn(this, "Cannot load index '%s' from storage (rid=%s): rebuilt it from scratch", getName(),
                rid);
          rebuild();
        }
      }

After Change


            OLogManager.instance().warn(this, "Cannot load index '%s' from storage (rid=%s): rebuilt it from scratch", getName(),
                rid);
          try {
            rebuild();
          } catch (Throwable t) {
            OLogManager.instance().error(this,
                "Cannot rebuild index '%s' from storage (rid=%s). The index will be removed in configuration", getName(), rid);